home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 017 / baterata.ebl < prev    next >
Text File  |  1984-10-18  |  7KB  |  178 lines

  1.  
  2. ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ E R R A T A ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ (4/4/84)
  3.  
  4.     Program updates are made more often than the updates to the
  5. user's guide can keep up with.  In order to keep you better
  6. informed, this file contains information related to corrections
  7. or updates to the user's guide as well as notification of what
  8. problems were identified and fixed for the version of the program
  9. that is on this diskette.
  10.  
  11. Please refer to the users guide and the BATDOC.BAT file for
  12. information about Extended Batch Language commands and operation.
  13. For an example of the capabilities of 'EBL', execute the BATDEMO.BAT
  14. file by just typing "BATDEMO" at the DOS prompt.
  15.  
  16.  
  17.  
  18. USER'S GUIDE CORRECTIONS........
  19.  
  20.     Page 34 - 2nd paragraph.
  21.  
  22.     If the INKEY command senses a key pressed in the range of "!"
  23. to "z" (decimal 33 to 122) then a key will be saved in the
  24. optional variable as that single character.  It WILL NOT be
  25. echoed to the display.    If you wish it to be displayed, you must
  26. specifically use the TYPE command.
  27.  
  28.  
  29.  
  30. =='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='==
  31. The following list of program corrections are for reference only. The
  32. fundamental operation of the program has not changed. Please refer to the
  33. manual for examples of how Extended Batch Language can be used.
  34. =='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='==
  35.  
  36.  
  37. PROGRAM CORRECTIONS/CHANGES (for version 2.00b) .......
  38.  
  39.     1.    The initial logo screen describing the user supported
  40. concept had a 'Press any key to continue...'.  If a key was
  41. pressed to advance past this screen, the key was sensed only and
  42. not actually read in.  Therefore, the key remained in the
  43. keyboard buffer and sometimes interfered with programs following
  44. BAT in an AUTOEXEC.BAT file.  If a key is pressed, it is actually
  45. removed from the keyboard buffer now.
  46.  
  47.     2.    If the special SIZE option is used when BAT is first
  48. invoked, it will also signal the initial logo screen to be
  49. reduced in size.  This initial logo screen is used to present the
  50. user supported concept.  In addition, it will not wait for a
  51. key-press to continue.    The SIZE option is created by making the
  52. first executed BAT statement:
  53.  
  54.     BAT * [decimal size] [comment]
  55.  
  56.     The [decimal size] is a number representing the amount of
  57. space to reserve for a keyboard stack area.  The default is 512
  58. bytes.    This is described further in section 4.1 on page 8 of the
  59. users guide.
  60.  
  61.     3.    The stack status variable %Q gave incorrect information
  62. as to the source of the next character.  Previously, information
  63. was said to come from the stack if the stack was not empty.  No
  64. attention was paid however to see if the stack was enabled
  65. (STACK.ON).  Now, information is said to come from the stack if
  66. both the stack is not empty and the stack is enabled.  This will
  67. now correctly represent the status of the SOURCE of the next
  68. keyboard character.
  69.  
  70.     4.    The READ function did not echo the keyboard characters to
  71. the screen if the stack was not empty and the STACK.OFF command
  72. was used.  This is no longer the case.    In all cases when the
  73. READ command reads characters from the keyboard, they will be
  74. echoed to the display.    Note that the echo will still be
  75. suppressed if characters are read from the keyboard stack
  76. instead.
  77.  
  78.  
  79.  
  80. PROGRAM CORRECTIONS/CHANGES (for version 2.01) .......
  81.  
  82.  1.    Added code to speed up CALL/GOTO for large files.
  83.  
  84.  2.    Changed stack interface to BIOS to fix bug with multimate/filecmd.
  85.  
  86.  3.    Fixed CLS so won't erase background color with ANSI.SYS installed.
  87.  
  88.  4.    Made character I/O go to directly to BIOS (not DOS) to allow attributes
  89.            in spite of the way ANSI.SYS device driver traps and removes
  90.            prewritten screen attributes.
  91.  
  92.  5.    'Eagle' DOS 1.25 compatible now.
  93.  
  94.  6.    Pressing Ctrl-break will now make the stack pointer for CALL and RETURN
  95.            commands into an empty stack condition.
  96.  
  97.  7.    Added attributes to help messages.
  98.  
  99.  8.    Fixed bug in CALL commands immediately after a DOS command in order
  100.            to properly save the code location for a RETURN command.
  101.  
  102.  9.    When in TRACE.ON mode, the trace messages on a color display are
  103.            green. Messages from program are white. Users with a monochrome
  104.            monitor will not see any difference.
  105.  
  106. 10.    Message space has been optimized so that overall code size is smaller.
  107.  
  108. 11.    Fixed bug in stacking an F1 key by itself.
  109.  
  110. 12.    Protected stack further from invalid function key codes or time delay
  111.            codes.
  112.  
  113. 13.    When putting screen attributes within the text under a BEGTYPE
  114.            command, the use of ESC characters (used with ANSI.SYS) in
  115.            the text are exclusive of the built in \0F style attribute
  116.            codes! Do not mix, use only one.
  117.  
  118. 14.    Changed values of extended INT16 (kbd) functions so won't
  119.            interfere with PROKEY. Prokey will now coexist with
  120.            Extended Batch Language as long as the following patch
  121.            is applied to Prokey. The following text describes the
  122.            necessary changes.
  123.  
  124. Prokey was written without regard to allow other software to access the
  125. keyboard interrupt chain (INT16).  EBL uses it for the stack, and Prokey
  126. uses it to simulate keystrokes.  The following patch will trick Prokey into
  127. thinking that no other software is using the interrupt chain.  This was
  128. done on Prokey version 2.12.  Please note that the patch location may move
  129. with other versions.  The location that the Debug "S" (scan) command
  130. supplies should be the location needing patching.  As always, keep a copy
  131. of the original before patching.  If you don't understand how to use Debug,
  132. find a friend (maybe someone at your local PC Club) who does.
  133.  
  134. A>RENAME PROKEY.EXE PROKEY.E
  135. A>DEBUG PROKEY.E
  136. -S 0L3000 5A 00 3D 00 F0
  137. 0908:2A60
  138. -E 2A60
  139. 0908:2A60  5A.26
  140. -W
  141. Writing 3280 bytes
  142. -q
  143. A>RENAME PROKEY.E PROKEY.EXE
  144. A>
  145.  
  146. PLEASE NOTE:  You must also use EBL version 2.01 or better.  Also,
  147.   initially as your system starts up, you MUST have EBL loaded FIRST and
  148.   Prokey loaded SECOND in your AUTOEXEC.BAT.  The following is OK:
  149.  
  150.      BAT * 512
  151.      PROKEY /I
  152.  
  153.  
  154. =='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='=='==
  155.  
  156. GENERAL INFORMATION .........
  157.  
  158. A bug in DOS version 2.0 and 2.1 has been identified which can cause
  159. problems if you try to use the variables %0 to %9 in an AUTOEXEC.BAT
  160.  
  161. The following AUTOEXEC.BAT file will give bad results or bomb:
  162.   BAT * 512
  163.   BAT %1 = ABC
  164.   REM ABC CHARACTERS COME OUT LIKE %1
  165.  
  166. By restarting the file by hand, there won't be a problem. As a fix, you
  167. can have EBL restart it automatically by doing the following:
  168.   BAT * 512
  169.   BAT IF %Q = K STACK AUTOEXEC | STACK | EXIT
  170.   BAT STACK.PURGE
  171.   BAT %1 = ABC
  172.   REM ABC CHARACTERS COME OUT LIKE %1
  173.  
  174. It turns out that DOS version 2 supplies invalid pointers to EBL for the
  175. %0-%9 variables only during an AUTOEXEC. The locations DOS supplies
  176. get overwritten by DOS during it's execution. In some systems, it will
  177. hang. Hopefully, next versions of DOS won't have this problem.
  178.